home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
dfue
/
elcheapofax
/
printers
/
rcs
/
makefile,v
< prev
next >
Wrap
Text File
|
1995-03-09
|
1KB
|
89 lines
head 1.3;
access;
symbols
OCT93:1.3;
locks;
comment @# @;
1.3
date 93.07.12.03.43.26; author Rhialto; state Exp;
branches;
next 1.2;
1.2
date 93.06.11.16.29.21; author Rhialto; state Exp;
branches;
next 1.1;
1.1
date 93.06.11.15.08.07; author Rhialto; state Exp;
branches;
next ;
desc
@The Makefile for the /printers directory
@
1.3
log
@Delete protos.h before recreating it
@
text
@####
#
# Makefile for the El Cheapo FAX printer driver
# $Id: Makefile,v 1.2 1993/06/11 16:29:21 Rhialto Exp $
CFLAGS = -proto -ms $(CDBG) $(SYMS)
AFLAGS =
EXE = FaxPrinter
CDBG = -DDEBUG -IUser:msh/syslog
LDBG = User:msh/syslog/syslog.o
SYMS = -Hdefs.sym=defs.h
ASRC = printertag.asm transfer.asm
CSRC = data.c density.c dospecial.c init.c render.c #ctransfer.c
AOBJ = printertag.o transfer.o
COBJ = data.o density.o dospecial.o init.o render.o #ctransfer.o
XOBJ = /tofax.o
OBJ = $(AOBJ) $(COBJ) $(XOBJ)
$(EXE): protos.h $(OBJ)
$(LD) -l0 $(OBJ) $(LDBG) -o $(EXE) -lc -lamiga20 -lauto
protos.h: $(CSRC)
-delete protos.h
Makeproto -o protos.h $(CSRC)
ci:
ci -u RCS/*,v
@
1.2
log
@First real RCS checkin
@
text
@d4 1
a4 1
# $Id$
d27 1
@
1.1
log
@Initial revision
@
text
@d4 1
d28 3
@